<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#trial{
    display: none;
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100vh;
    background-color: rgba(30,30,30, .3);
    justify-content: center;
    align-items: center;
}
.embed-icon {
    display: none;
}

.modal{
    width: 600px;
    border-radius: 10px;
	border: 2px solid #ffffff;
	border-image-source: linear-gradient(0deg, 
		#ffffff 100%);
    background-image: linear-gradient(0deg, 
		#ffffff 0%, 
		#eff1f6 100%);
    box-shadow: 0px 0px 1px 0px #d2d2d2;
    animation: animate .5s;
    padding: 20px 40px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    top: 3%;
}

.modal-bg {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
}

.modal-header {
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

.modal-header .title {
    font-family: MicrosoftYaHei-Bold;
	font-size: 26px;
    line-height: 60px;
    font-weight: bold;
	letter-spacing: 0px;
	color: #262c3a;
}

.modal-header .desc {
    font-family: MicrosoftYaHei;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #262c3a;
}

.modal-content{
    width: 100%;
    margin: 60px 0 24px;
    position: relative;
    z-index: 2;
}

.modal-row {
    display: flex;
    justify-content: space-between;
}

.modal-row .modal-item {
    width: 45%;
}

.modal-item {
    padding-bottom: 4px;
}

.modal-item:last-child {
    padding-bottom: 0;
}

.modal-item .label {
    font-family: MicrosoftYaHei;
    font-size: 14px;
    line-height: 34px;
    margin-right: 5px;
    color: #262c3a;
    text-align: left;
}

.modal-item small {
    display: none;
    font-size: 10px;
    color: red;
    margin-left: 10px;
}

.modal-item .label::after {
    content: ' *';
    color: red
}

.modal-item input, .modal-item textarea, .modal-item select {
    flex: 1;
}

.modal-item input, .modal-item textarea, .modal-item select {
    width: 100%;
    border-radius: 1px;
    background-color: #ECEFF4;
    color: #262c3a;
    border: 1px solid #D9D9D9 !important;
    padding: 7px 15px !important;
    box-sizing: border-box;
    outline-style: none;
}

.modal-item input, .modal-item select {
    height: 40px;
}

.modal-item textarea {
    resize:none
}

.modal-item input::placeholder {
    color: rgba(38,44,58, .45);
    font-size: 12px;
    transform: translateY(-2px);
}

.modal-item textarea::placeholder {
    color: rgba(38,44,58, .45);
    font-size: 12px;
}

.trial-submit {
    width: 112px;
    height: 35px;
    line-height: 31px;
    border-radius: 3px;
	font-size: 14px;
    
    background-color: #2f61f1;
	font-weight: normal;
	font-stretch: normal;
	color: #ffffff;
    margin-right: 20px;
}

.cancel-btn {
    width: 112px;
    height: 35px;
    line-height: 31px;
    border-radius: 2px;
    
    border: 1px solid #323847;
    background-color: transparent;
    font-size: 14px;
    color: #252b3a;
}

.modal-footer {
    width: 100%;
    display: flex;
    justify-content: center;
}




/* ��腓堺��桁� */
#message-notice {
    display: none;
    position: fixed;
    z-index: 1010;
    top: 100px;
    left: 45%;
    animation: notice-animate .3s;
}

.message-notice-content {
    font-size: 14px;
    margin: 0 auto;
    padding: 9px 12px;
    background: #ffffff;
    color: rgba(0, 0, 0, 0.88);
    border-radius: 8px;
    box-shadow: 0 6px 16px 0 rgba(153, 118, 118, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.message-notice-content .icon {
    display: none;
    font-size: 15px;
    margin-right: 10px;
    color: #52C41A;
}

.message-notice-content .icon-error {
    display: none;
    font-size: 15px;
    margin-right: 10px;
    color: #FF4D4F;
}

/* ������腓堺��桁� */
#deliver-notice {
    display: none;
    position: fixed;
    z-index: 1010;
    top: 35%;
    left: calc(50% - 225px);
    animation: notice-animate .3s;
}

#deliver-notice .message-notice-content {
    width: 450px;
    display: flex;
    justify-content: center;
    padding: 30px 20px;
}

#deliver-notice .email {
    color: #2f61f1;
    font-weight: bold;
}

/*羞糸������*/
@keyframes animate{
    from {
        opacity: 0
    }
    to { 
        opacity: 1
    }
}

/*羞糸������*/
@keyframes notice-animate{
    from {
        transform: translateY(-30px);
        opacity: 0
    }
    to {
        opacity: 1
    }
}
</pre></body></html>